home *** CD-ROM | disk | FTP | other *** search
/ PC Electronics Plus 3 / PC Electronics Plus 3.iso / pads / testdriv.bat < prev    next >
DOS Batch File  |  1993-07-26  |  2KB  |  91 lines

  1. echo off
  2.  
  3. if exist \pperform.swp goto BADSWAP
  4. if exist \logc2000.swp goto BADSWAP
  5.  
  6. :top1
  7.  
  8. front2
  9. if errorlevel 99 goto top1
  10.  
  11. if errorlevel 6 goto end
  12. if errorlevel 5 goto pedit
  13. if errorlevel 4 goto plib
  14. if errorlevel 3 goto cedit
  15. if errorlevel 2 goto pcb
  16. if errorlevel 1 goto logic
  17. goto end
  18.  
  19. :plib
  20. if not exist plib.exe goto bad
  21. plib
  22. goto top1
  23.  
  24. :pedit
  25. if not exist pedit.exe goto bad
  26. pedit /P /B pedit.tmp
  27. goto top1
  28.  
  29. :cedit
  30. if not exist pedit.exe goto bad
  31. pedit /C /B pedit.tmp
  32. goto top1
  33.  
  34.  
  35. :pcb
  36. if not exist pperftd.exe goto bad
  37. cls
  38.  
  39. rem If you have a non VCPI compatible expanded memory driver loaded you
  40. rem should disable it by inserting the appropiate command on the next line.
  41.  
  42. rem cemm off
  43.  
  44. pperftd /m
  45.  
  46. rem If you have a non VCPI compatible expanded memory driver loaded you
  47. rem should enable it by inserting the appropiate command on the next line.
  48.  
  49. rem cemm on
  50.  
  51. goto top1
  52.  
  53.  
  54. :logic
  55. if not exist plogtd.exe goto bad
  56. cls
  57.  
  58. rem If you have a non VCPI compatible expanded memory driver loaded you
  59. rem should disable it by inserting the appropiate command on the next line.
  60.  
  61. rem cemm off
  62.  
  63. plogtd /m
  64.  
  65. rem If you have a non VCPI compatible expanded memory driver loaded you
  66. rem should enable it by inserting the appropiate command on the next line.
  67.  
  68. rem cemm on
  69.  
  70. goto top1
  71.  
  72.  
  73. :bad
  74. echo Program not found!
  75. pause
  76. goto top1
  77.  
  78. :badswap
  79. if exist \pperform.swp del \pperform.swp
  80. if exist \logc2000.swp del \logc2000.swp
  81. echo *
  82. echo *****************************************************************************
  83. echo A previous crash of a 386 application has probably left some lost clusters on
  84. echo your hard drive. It is therefore suggested you run chkdsk /f or an equivalent
  85. echo utility which is compatible with your disk manager.
  86. echo *****************************************************************************
  87. echo *
  88. goto end
  89.  
  90. :end
  91.